Skip to content

build(deps): bump the river group across 1 directory with 2 updates#2

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/river-7984548cb9
Open

build(deps): bump the river group across 1 directory with 2 updates#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/river-7984548cb9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Copy link
Copy Markdown

Bumps the river group with 1 update in the / directory: github.com/riverqueue/river.

Updates github.com/riverqueue/river from 0.35.0 to 0.39.0

Release notes

Sourced from github.com/riverqueue/river's releases.

v0.39.0

⚠️ Breaking API change: rivermigrate.Migrator.Validate and rivermigrate.Migrator.ValidateTx now take a *rivermigrate.ValidateOpts parameter. Pass nil to preserve previous behavior. We normally endeavor not to make any breaking API changes, but this one will keep the API in a much nicer state, and is on an ancillary function that most installations won't be using. [PR #1259](riverqueue/river#1259)

Added

  • Added MetadataSet to stage job metadata updates from worker middleware, HookWorkBegin, workers, or HookWorkEnd, with changes persisted when the job is completed. [PR #1269](riverqueue/river#1269)

Changed

  • Add rivermigrate.ValidateOpts.TargetVersion so validation can check migrations up to a specific target version, matching the target-version behavior available on Migrate and MigrateTx. Notably, this is a breaking API change as the validate functions previously didn't take any options. [PR #1259](riverqueue/river#1259)
  • When using (*Migrator[TTx]).Migrate with a TargetVersion that's already applied, River now no-ops idempotently instead of returning an error as a user convenience. [PR #1260](riverqueue/river#1260)
  • Add logging statement for dropped job and queue subscription events at warn level when a subscriber buffer is full. [PR #1271](riverqueue/river#1271)

Fixed

  • Add a 10-second timeout around StandardPilot.JobGetAvailable so a stalled standard-pilot fetch no longer hangs a producer indefinitely. [PR #1255](riverqueue/river#1255)
  • Fixed rivertest.Worker.Work and WorkJob to honor a configured custom Config.Schema when transitioning a job to its running state. Previously, the running-state update ran unqualified and could fail on a connection whose search_path didn't include the configured schema. [PR #1262](riverqueue/river#1262)

v0.38.0

Added

  • Added new configuration Config.SoftStopTimeout to provide a cleaner way to gracefully stop a client. [PR #1239](riverqueue/river#1239)

v0.37.1

Fixed

  • Wrap PeriodicJobEnqueuer.insertBatch database calls in a 30-second timeout. Previously, a stalled pgx Begin/Insert/Commit could hang the periodic enqueuer indefinitely, halting all periodic job insertion until the process was restarted or leader re-elected. [PR #1251](riverqueue/river#1251)

v0.37.0

Added

  • Added "resumable jobs" that can be broken down into multiple steps and with a step persisted after it finishes that lets them skip work that's already been done. This is particularly useful for long running jobs that may experience a cancellation (like in the event of a deploy) during the span of their run. [PR #1226](riverqueue/river#1226).

v0.36.0

Added

Fixed

  • Fix unsafe concurrent producer map access in client. [PR #1236](riverqueue/river#1236).
  • Mark schema replacements as Stable in sqlc templates, preventing query SQL from having to be reallocated over and over again.. [PR #1242](riverqueue/river#1242).
  • Fix bug in sqltemplate cached path in order in which named args are passed to a query (previously, the order was unstable). [PR #1243](riverqueue/river#1243).

v0.35.1

Fixed

Changelog

Sourced from github.com/riverqueue/river's changelog.

[0.39.0] - 2026-06-03

⚠️ Breaking API change: rivermigrate.Migrator.Validate and rivermigrate.Migrator.ValidateTx now take a *rivermigrate.ValidateOpts parameter. Pass nil to preserve previous behavior. We normally endeavor not to make any breaking API changes, but this one will keep the API in a much nicer state, and is on an ancillary function that most installations won't be using. [PR #1259](riverqueue/river#1259)

Added

  • Added MetadataSet to stage job metadata updates from worker middleware, HookWorkBegin, workers, or HookWorkEnd, with changes persisted when the job is completed. [PR #1269](riverqueue/river#1269)

Changed

  • Add rivermigrate.ValidateOpts.TargetVersion so validation can check migrations up to a specific target version, matching the target-version behavior available on Migrate and MigrateTx. Notably, this is a breaking API change as the validate functions previously didn't take any options. [PR #1259](riverqueue/river#1259)
  • When using (*Migrator[TTx]).Migrate with a TargetVersion that's already applied, River now no-ops idempotently instead of returning an error as a user convenience. [PR #1260](riverqueue/river#1260)
  • Add logging statement for dropped job and queue subscription events at warn level when a subscriber buffer is full. [PR #1271](riverqueue/river#1271)

Fixed

  • Add a 10-second timeout around StandardPilot.JobGetAvailable so a stalled standard-pilot fetch no longer hangs a producer indefinitely. [PR #1255](riverqueue/river#1255)
  • Fixed rivertest.Worker.Work and WorkJob to honor a configured custom Config.Schema when transitioning a job to its running state. Previously, the running-state update ran unqualified and could fail on a connection whose search_path didn't include the configured schema. [PR #1262](riverqueue/river#1262)

[0.38.0] - 2026-05-22

Added

  • Added new configuration Config.SoftStopTimeout to provide a cleaner way to gracefully stop a client. [PR #1239](riverqueue/river#1239)

[0.37.1] - 2026-05-15

Fixed

  • Wrap PeriodicJobEnqueuer.insertBatch database calls in a 30-second timeout. Previously, a stalled pgx Begin/Insert/Commit could hang the periodic enqueuer indefinitely, halting all periodic job insertion until the process was restarted or leader re-elected. [PR #1251](riverqueue/river#1251)

[0.37.0] - 2026-05-11

Added

  • Added "resumable jobs" that can be broken down into multiple steps and with a step persisted after it finishes that lets them skip work that's already been done. This is particularly useful for long running jobs that may experience a cancellation (like in the event of a deploy) during the span of their run. [PR #1226](riverqueue/river#1226).

[0.36.0] - 2026-05-09

Added

Fixed

  • Fix unsafe concurrent producer map access in client. [PR #1236](riverqueue/river#1236).
  • Mark schema replacements as Stable in sqlc templates, preventing query SQL from having to be reallocated over and over again.. [PR #1242](riverqueue/river#1242).
  • Fix bug in sqltemplate cached path in order in which named args are passed to a query (previously, the order was unstable). [PR #1243](riverqueue/river#1243).

[0.35.1] - 2026-04-26

... (truncated)

Commits
  • 5535390 Prepare release v0.39.0 (#1273)
  • eead0e5 Standardize "hot" operation timeout (#1268)
  • 1ca3420 Log dropped subscription events (#1271)
  • dfc32de Add helper for job metadata updates (#1269)
  • 9e7035d Bump the go-dependencies group across 3 directories with 1 update (#1267)
  • 0808652 Clarify worker cancellation requirements for stuck jobs (#1264)
  • 965dbad Add timeout to standard pilot fetch (#1255)
  • 698d808 Make up migrations with TargetVersion idempotent (#1261)
  • 87e82c3 Honor Config.Schema for the running-state transition in rivertest.Worker ...
  • 61c6ac7 Add options to migrator Validate functions + option for TargetVersion (#1...
  • Additional commits viewable in compare view

Updates github.com/riverqueue/river/riverdriver/riverpgxv5 from 0.35.0 to 0.39.0

Release notes

Sourced from github.com/riverqueue/river/riverdriver/riverpgxv5's releases.

v0.39.0

⚠️ Breaking API change: rivermigrate.Migrator.Validate and rivermigrate.Migrator.ValidateTx now take a *rivermigrate.ValidateOpts parameter. Pass nil to preserve previous behavior. We normally endeavor not to make any breaking API changes, but this one will keep the API in a much nicer state, and is on an ancillary function that most installations won't be using. [PR #1259](riverqueue/river#1259)

Added

  • Added MetadataSet to stage job metadata updates from worker middleware, HookWorkBegin, workers, or HookWorkEnd, with changes persisted when the job is completed. [PR #1269](riverqueue/river#1269)

Changed

  • Add rivermigrate.ValidateOpts.TargetVersion so validation can check migrations up to a specific target version, matching the target-version behavior available on Migrate and MigrateTx. Notably, this is a breaking API change as the validate functions previously didn't take any options. [PR #1259](riverqueue/river#1259)
  • When using (*Migrator[TTx]).Migrate with a TargetVersion that's already applied, River now no-ops idempotently instead of returning an error as a user convenience. [PR #1260](riverqueue/river#1260)
  • Add logging statement for dropped job and queue subscription events at warn level when a subscriber buffer is full. [PR #1271](riverqueue/river#1271)

Fixed

  • Add a 10-second timeout around StandardPilot.JobGetAvailable so a stalled standard-pilot fetch no longer hangs a producer indefinitely. [PR #1255](riverqueue/river#1255)
  • Fixed rivertest.Worker.Work and WorkJob to honor a configured custom Config.Schema when transitioning a job to its running state. Previously, the running-state update ran unqualified and could fail on a connection whose search_path didn't include the configured schema. [PR #1262](riverqueue/river#1262)

v0.38.0

Added

  • Added new configuration Config.SoftStopTimeout to provide a cleaner way to gracefully stop a client. [PR #1239](riverqueue/river#1239)

v0.37.1

Fixed

  • Wrap PeriodicJobEnqueuer.insertBatch database calls in a 30-second timeout. Previously, a stalled pgx Begin/Insert/Commit could hang the periodic enqueuer indefinitely, halting all periodic job insertion until the process was restarted or leader re-elected. [PR #1251](riverqueue/river#1251)

v0.37.0

Added

  • Added "resumable jobs" that can be broken down into multiple steps and with a step persisted after it finishes that lets them skip work that's already been done. This is particularly useful for long running jobs that may experience a cancellation (like in the event of a deploy) during the span of their run. [PR #1226](riverqueue/river#1226).

v0.36.0

Added

Fixed

  • Fix unsafe concurrent producer map access in client. [PR #1236](riverqueue/river#1236).
  • Mark schema replacements as Stable in sqlc templates, preventing query SQL from having to be reallocated over and over again.. [PR #1242](riverqueue/river#1242).
  • Fix bug in sqltemplate cached path in order in which named args are passed to a query (previously, the order was unstable). [PR #1243](riverqueue/river#1243).

v0.35.1

Fixed

Changelog

Sourced from github.com/riverqueue/river/riverdriver/riverpgxv5's changelog.

[0.39.0] - 2026-06-03

⚠️ Breaking API change: rivermigrate.Migrator.Validate and rivermigrate.Migrator.ValidateTx now take a *rivermigrate.ValidateOpts parameter. Pass nil to preserve previous behavior. We normally endeavor not to make any breaking API changes, but this one will keep the API in a much nicer state, and is on an ancillary function that most installations won't be using. [PR #1259](riverqueue/river#1259)

Added

  • Added MetadataSet to stage job metadata updates from worker middleware, HookWorkBegin, workers, or HookWorkEnd, with changes persisted when the job is completed. [PR #1269](riverqueue/river#1269)

Changed

  • Add rivermigrate.ValidateOpts.TargetVersion so validation can check migrations up to a specific target version, matching the target-version behavior available on Migrate and MigrateTx. Notably, this is a breaking API change as the validate functions previously didn't take any options. [PR #1259](riverqueue/river#1259)
  • When using (*Migrator[TTx]).Migrate with a TargetVersion that's already applied, River now no-ops idempotently instead of returning an error as a user convenience. [PR #1260](riverqueue/river#1260)
  • Add logging statement for dropped job and queue subscription events at warn level when a subscriber buffer is full. [PR #1271](riverqueue/river#1271)

Fixed

  • Add a 10-second timeout around StandardPilot.JobGetAvailable so a stalled standard-pilot fetch no longer hangs a producer indefinitely. [PR #1255](riverqueue/river#1255)
  • Fixed rivertest.Worker.Work and WorkJob to honor a configured custom Config.Schema when transitioning a job to its running state. Previously, the running-state update ran unqualified and could fail on a connection whose search_path didn't include the configured schema. [PR #1262](riverqueue/river#1262)

[0.38.0] - 2026-05-22

Added

  • Added new configuration Config.SoftStopTimeout to provide a cleaner way to gracefully stop a client. [PR #1239](riverqueue/river#1239)

[0.37.1] - 2026-05-15

Fixed

  • Wrap PeriodicJobEnqueuer.insertBatch database calls in a 30-second timeout. Previously, a stalled pgx Begin/Insert/Commit could hang the periodic enqueuer indefinitely, halting all periodic job insertion until the process was restarted or leader re-elected. [PR #1251](riverqueue/river#1251)

[0.37.0] - 2026-05-11

Added

  • Added "resumable jobs" that can be broken down into multiple steps and with a step persisted after it finishes that lets them skip work that's already been done. This is particularly useful for long running jobs that may experience a cancellation (like in the event of a deploy) during the span of their run. [PR #1226](riverqueue/river#1226).

[0.36.0] - 2026-05-09

Added

Fixed

  • Fix unsafe concurrent producer map access in client. [PR #1236](riverqueue/river#1236).
  • Mark schema replacements as Stable in sqlc templates, preventing query SQL from having to be reallocated over and over again.. [PR #1242](riverqueue/river#1242).
  • Fix bug in sqltemplate cached path in order in which named args are passed to a query (previously, the order was unstable). [PR #1243](riverqueue/river#1243).

[0.35.1] - 2026-04-26

... (truncated)

Commits
  • 5535390 Prepare release v0.39.0 (#1273)
  • eead0e5 Standardize "hot" operation timeout (#1268)
  • 1ca3420 Log dropped subscription events (#1271)
  • dfc32de Add helper for job metadata updates (#1269)
  • 9e7035d Bump the go-dependencies group across 3 directories with 1 update (#1267)
  • 0808652 Clarify worker cancellation requirements for stuck jobs (#1264)
  • 965dbad Add timeout to standard pilot fetch (#1255)
  • 698d808 Make up migrations with TargetVersion idempotent (#1261)
  • 87e82c3 Honor Config.Schema for the running-state transition in rivertest.Worker ...
  • 61c6ac7 Add options to migrator Validate functions + option for TargetVersion (#1...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 27, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the river group with 2 updates chore(deps): bump the river group across 1 directory with 2 updates May 16, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/river-7984548cb9 branch 3 times, most recently from 967f6af to bed3aa4 Compare May 18, 2026 18:08
@dependabot dependabot Bot force-pushed the dependabot/go_modules/river-7984548cb9 branch 2 times, most recently from c85b479 to 476fc4a Compare May 25, 2026 20:39
@dependabot dependabot Bot changed the title chore(deps): bump the river group across 1 directory with 2 updates build(deps): bump the river group across 1 directory with 2 updates Jun 2, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/river-7984548cb9 branch from 476fc4a to f3a4026 Compare June 2, 2026 04:55
Bumps the river group with 1 update in the / directory: [github.com/riverqueue/river](https://github.com/riverqueue/river).


Updates `github.com/riverqueue/river` from 0.35.0 to 0.39.0
- [Release notes](https://github.com/riverqueue/river/releases)
- [Changelog](https://github.com/riverqueue/river/blob/master/CHANGELOG.md)
- [Commits](riverqueue/river@v0.35.0...v0.39.0)

Updates `github.com/riverqueue/river/riverdriver/riverpgxv5` from 0.35.0 to 0.39.0
- [Release notes](https://github.com/riverqueue/river/releases)
- [Changelog](https://github.com/riverqueue/river/blob/master/CHANGELOG.md)
- [Commits](riverqueue/river@v0.35.0...v0.39.0)

---
updated-dependencies:
- dependency-name: github.com/riverqueue/river
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: river
- dependency-name: github.com/riverqueue/river/riverdriver/riverpgxv5
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: river
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/river-7984548cb9 branch from f3a4026 to c31ff86 Compare June 8, 2026 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants